home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / pascal / tch_tpas.zip / TL02.TXT < prev    next >
Text File  |  1986-04-05  |  3KB  |  94 lines

  1. TURBO-LESSONS - A Pascal Tutorial        Version 1.01    Page 10
  2.  
  3.  
  4.                  TURBO-LESSON 2: EDITING PROGRAMS
  5.  
  6. OBJECTIVES - In lesson 2 you will learn about:
  7.  
  8. 1.  Starting an edit session
  9. 2.  Ending an edit session
  10. 3.  Moving the cursor to desired location
  11. 4.  Inserting/replacing text
  12. 5.  Deleting text
  13. 6.  Auto-tabbing for readable programs
  14.  
  15.  
  16. TURBO-LESSON 2 uses a slightly different approach than most of 
  17. the other TURBO-LESSONs.  Much of the tutorial material of this 
  18. lesson is in PROG2.  PROG2 is not really a program, but a 
  19. tutorial itself.  After starting the editor with PROG2, you will 
  20. learn to edit by editing PROG2 in ways suggested within the 
  21. "program".  
  22.  
  23. ******* NOTE: BE SURE YOU HAVE A BACK-UP COPY OF THE TURBO-
  24. LESSONS AND SAMPLE PROGRAMS.  MANY OF THE LESSONS WILL DIRECT YOU 
  25. TO MAKE CHANGES IN THE PROGRAMS.  A BACK-UP COPY WILL PROVIDE A 
  26. NEW COPY OF THE ORIGINAL PROGRAMS WHENEVER THEY ARE NEEDED.  
  27.  
  28. 1.  Starting an edit session.
  29.  
  30. There are two ways to start an edit session.  One way is to 
  31. invoke the editor yourself when you wish to write a new program 
  32. or modify an old one.  The other way is automatic.  When TURBO 
  33. compiles your program and finds an error, it switches to the edit 
  34. mode by itself and highlights the probable error.  More about 
  35. that later.  This lesson covers only the first method.  You start 
  36. an edit session by typing E at the main menu.  
  37.  
  38. ##### DO:
  39.  
  40. Type E.
  41.  
  42. Computer responds: "Work file name:".  
  43.  
  44. Type PROG2. 
  45.  
  46. PROG2 will appear on the screen with the Editor "status line" at 
  47. the top of the screen.  
  48. î
  49. TURBO-LESSONS - A Pascal Tutorial        Version 1.01    Page 11
  50.  
  51.  
  52. 2.  Ending an edit session.
  53.  
  54. One of the first things you learn when learning to drive a car is 
  55. how to stop.   When editing a program, you need to know how to 
  56. get out of the editor and back to the main menu.  To exit the 
  57. editor and save the edited file, type ctrl-k followed by either d 
  58. or ctrl-d.  (Ctrl-k means: hold down the control key while 
  59. depressing k).  Note that the editor has no provision for 
  60. abandoning an edited file - if you need to abandon a file, exit 
  61. the editor and reload the work file from disk without first 
  62. saving the edited version.  
  63.  
  64. ##### DO:
  65.  
  66. Type ctrl-k, d.
  67.  
  68. Computer responds: Main menu.
  69.  
  70. 3. - 6.  Objectives 3 to 6 are covered in PROG2.  To begin,
  71.  
  72. ##### DO:
  73.  
  74. Type E.
  75.  
  76. Computer responds: Edit session is started with PROG2.
  77.  
  78. After working through the tutorial contained in PROG2, you may 
  79. want to load and run PROG2A.  PROG2A prints the cursor movement 
  80. reference table referred to in the tutorial.  To run PROG2A: 
  81.  
  82. ##### DO:
  83.  
  84. Type W.
  85.  
  86. Computer responds: "Work file name".
  87.  
  88. Type PROG2A.
  89.  
  90. Type R.
  91.  
  92. PROG2A executes, printing a short summary of the cursor movement 
  93. keys used by the TURBO editor.
  94. î